  /* CSS styles tương tự như đã cung cấp trước */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }


  .header {
    background-color: #00ACC1;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }

  .header-title {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .admin-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .admin-avatar {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .breadcrumb a {
    text-decoration: none;
    color: #4A5568;
  }

  .breadcrumb a:hover {
    text-decoration: none;
    color: #2D3748;
  }

  .home {
    text-decoration: none;
    color: white;
}

  .sidebar {
    width: 250px;
    background-color: #2D3748;
    color: white;
    position: fixed;
    height: 100vh;
    top: 60px;
    left: 0;
    overflow-y: auto;
  }

  .nav-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    color: white;
  }

  .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .main-content {
    margin-left: 250px;
    margin-top: 60px;
    padding: 1.5rem;
    background-color: #F7FAFC;
    min-height: calc(100vh - 60px);
  }

  .breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #4A5568;
  }

  .action-button {
    background-color: #00ACC1;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
  }

  .action-button:hover {
    background-color: #0097A7;
  }

  .table-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th {
    background-color: #F9FAFB;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #4A5568;
    border-bottom: 1px solid #E2E8F0;
  }

  td {
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
  }

  .homestay-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
  }

  .status-badge {
    background-color: #C6F6D5;
    color: #2F855A;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
  }

  .action-buttons {
    display: flex;
    gap: 0.5rem;
  }

  .edit-button {
    background-color: #4299E1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    color: white;
  }

  .delete-button {
    background-color: #F56565;
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    color: white;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .sidebar {
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .sidebar.active {
      transform: translateX(0);
    }

    .main-content {
      margin-left: 0;
    }

    .table-container {
      overflow-x: auto;
    }
  }

  .modal {
    display: none; 
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}